From 51799d41e46553633a7e98a3b721eadba67bd5ba Mon Sep 17 00:00:00 2001 From: Matthew Leeds Date: Wed, 15 Jun 2016 16:41:58 -0400 Subject: [PATCH] GtkActionHelper: Change a message to a warning It's almost certainly a programmer error if an action isn't activatable because its target and parameter type don't match. This commit changes the existing g_message to a g_warning. https://bugzilla.gnome.org/show_bug.cgi?id=767705 --- gtk/gtkactionhelper.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gtk/gtkactionhelper.c b/gtk/gtkactionhelper.c index 24f006cc67..6a77b03b02 100644 --- a/gtk/gtkactionhelper.c +++ b/gtk/gtkactionhelper.c @@ -147,12 +147,12 @@ gtk_action_helper_action_added (GtkActionHelper *helper, if (!helper->can_activate) { - GTK_NOTE(ACTIONS, g_message ("%s: action %s can't be activated due to parameter type mismatch " - "(parameter type %s, target type %s)", - "actionhelper", - helper->action_name, - parameter_type ? g_variant_type_peek_string (parameter_type) : "NULL", - helper->target ? g_variant_get_type_string (helper->target) : "NULL")); + g_warning ("%s: action %s can't be activated due to parameter type mismatch " + "(parameter type %s, target type %s)", + "actionhelper", + helper->action_name, + parameter_type ? g_variant_type_peek_string (parameter_type) : "NULL", + helper->target ? g_variant_get_type_string (helper->target) : "NULL"); return; } -- 2.30.2